* {
    padding: 0;
    margin: 0;
}

body {
    background-image: url(mulyadi-d3s3GD4C4DE-unsplash.jpg);
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

.menu-bar {
    background: rgb(195, 197, 51);
    text-align: center;
}

.logo {
    color: var(rgb(211, 29, 16));
    font-size: 150px;
}

.logo span {
    color: aqua;
}

.menu-bar ul {
    display: inline-flex;
    list-style: none;
    color: #fff;
    font-size: 20px;
}

.menu-bar ul li {
    width: 100px;
    margin: 15px;
    padding: 15px;
}

.menu-bar ul li a {
    text-decoration: none;
    color: #ffffff;
}

.active,
.menu-bar ul li:hover {
    background: rgb(34, 187, 67);
    border-radius: 3px;
}

.sub-menu-1 {
    display: none;
}

.menu-bar ul li:hover .sub-menu-1 {
    display: block;
    position: absolute;
    background: rgb(186, 182, 230);
    margin-top: 15px;
    margin-left: -15px;
}

.menu-bar ul li:hover .sub-menu-1 ul {
    display: block;
    margin: 10px;
}

li .menu-bar ul li:hover .sub-menu-1 ul li {
    width: 150px;
    padding: 10px;
    border-bottom: 1px dotted #fff;
    background: transparent;
    border-radius: 0;
    text-align: left;
}

.menu-bar ul li:hover .sub-menu-1 ul li:last-child {
    border-bottom: none;
}

.menu-bar ul li:hover .sub-menu-1 ul li a:hover {
    color: aqua;
}

.container h2 {
    position: absolute;
    top: 27%;
    left: 88%;
    transform: translate(-50%, -50%);
    color: #030303;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 3px;
}

.quotes {
    width: 100%;
    position: absolute;
    text-align: center;
    bottom: 50%;
    color: #d11717;
    font-size: 20px;
    font-weight: 500;
}

p1 {
    font-size: 20px;
    margin-bottom: 0px;
    margin-left: 0%;
    font-weight: 2000;
}

h3 {
    font-size: 50px;
    position: center;
    margin-top: -80px;
    margin-left: 10%;
    font-weight: 7560;
    color: #ffffff;
}

.svg {
    float: right;
}

.sub-menu-2 {
    display: none;
}

.hover-me:hover .sub-menu-2 {
    position: absolute;
    display: block;
    margin-top: -40px;
    margin-left: 140px;
    background: rgb(184, 106, 236);
}

@media screen and (max-width: 768px) {
    .menu-bar {
        text-align: center;
    }
    .menu-bar ul {
        display: block;
        margin: 10px 0;
    }
    .logo span {
        text-align: center;
    }
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}


/* Style for the links */

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
    margin: 100px;
}